home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- cursor(4)
- setupMovie()
- end
-
- on stopMovie
- hCleanupSprites()
- end
-
- on idle
- CheckForRollovers(the rollOver)
- end
-
- on setupMovie
- setupVol()
- sound fadeIn 1, 2 * 60
- updateStage()
- sound playFile 1, "MUSIC.AIF"
- updateStage()
- end
-
- on hCheckMusicPlaying
- if soundBusy(1) then
- nothing()
- else
- sound playFile 1, "MUSIC.AIF"
- end if
- end
-
- on hCheckSoundFadeOut
- global gSoundFadeOut, gWhichMovie
- if voidp(gSoundFadeOut) = 1 then
- set gSoundFadeOut to 0
- end if
- if gSoundFadeOut = 1 then
- if the timer < (1 * 60) then
- nothing()
- else
- puppetSound(0)
- set gSoundFadeOut to 0
- play movie gWhichMovie
- end if
- end if
- end
-